home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl760 / datafitj.lzh / GENERAL.FNS < prev    next >
Text File  |  1992-03-25  |  870b  |  26 lines

  1. a+b*x         ;straight line
  2. b*x           ;line through origin
  3. 1/(a+b*x)     ;reciprocal straight line
  4. a+b*x+c/x     ;linear and reciprocal
  5. a+b/x         ;hyperbola
  6. x/(a*x+b)     ;reciprocal hyperbola
  7. a+b/x+c/x^2   ;2nd order hyperbolic
  8. a+b*x+c*x^2   ;parabola
  9. a*x+b*x^2     ;parabola through origin
  10. a*x^b         ;power function
  11. a*b^x         ;modified power function
  12. a*b^(1/x)     ;square root
  13. a*x^(b*x)     ;super geometric
  14. a*x^(b/x)     ;modified geometric
  15. a*exp(b*x)    ;exponential
  16. a*exp(b/x)    ;modified exponential
  17. a+b*ln(x)     ;logarithmic
  18. 1/(a+b*ln(x)) ;reciprocal logarithmic
  19. a*b^x*x^c           ;hoerl function
  20. a*b^(1/x)*x^c       ;mod hoerl function
  21. a*exp(((x-b)^2)/c)  ;normal (gaussian)
  22. a*exp((ln(x)-b)^2/c);log normal
  23. a*x^b*(1-x)^c       ;beta function
  24. a*(x/b)^c*exp(x/b)  ;gamma function
  25. 1/(a*(x+b)^2+c)     ;cauchy function
  26.